func strconv.lower
20 uses
strconv (current package)
atof.go#L135: if i < len(s) && lower(s[i]) == 'e' {
atof.go#L194: if i+2 < len(s) && s[i] == '0' && lower(s[i+1]) == 'x' {
atof.go#L237: case base == 16 && 'a' <= lower(c) && lower(c) <= 'f':
atof.go#L242: mantissa += uint64(lower(c) - 'a' + 10)
atof.go#L268: if i < len(s) && lower(s[i]) == expChar {
atoi.go#L13: func lower(c byte) byte {
atoi.go#L97: case len(s) >= 3 && lower(s[1]) == 'b':
atoi.go#L100: case len(s) >= 3 && lower(s[1]) == 'o':
atoi.go#L103: case len(s) >= 3 && lower(s[1]) == 'x':
atoi.go#L146: case 'a' <= lower(c) && lower(c) <= 'z':
atoi.go#L147: d = lower(c) - 'a' + 10
atoi.go#L303: if len(s) >= 2 && s[0] == '0' && (lower(s[1]) == 'b' || lower(s[1]) == 'o' || lower(s[1]) == 'x') {
atoi.go#L306: hex = lower(s[1]) == 'x'
atoi.go#L312: if '0' <= s[i] && s[i] <= '9' || hex && 'a' <= lower(s[i]) && lower(s[i]) <= 'f' {
ftoa.go#L547: if fmt == lower(fmt) {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |